home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Medal Software 3
/
Gold Medal Software - Volume 3 (Gold Medal) (1994).iso
/
utils1
/
702to704.arj
/
RUNME.BAT
< prev
next >
Wrap
DOS Batch File
|
1994-04-19
|
2KB
|
41 lines
echo off
echo ╔═════════════════════════════════════════════════════════════╗
echo ║ QEMM patch for version 7.02 dated 9/16/93 ║
echo ║ ║
echo ║ This patchfile implements fixes to QEMM version 7.02. This ║
echo ║ patch will work ONLY on QEMM version 7.02. The date on the ║
echo ║ QEMM386.SYS file in your QEMM directory should be either ║
echo ║ 9/16/93 or 9/24/93. If the date on these files is later ║
echo ║ than 9/24/93, you do not need this patch. ║
echo ║ ║
echo ║ Press any key to continue or Control-C to abort. ║
echo ╚═════════════════════════════════════════════════════════════╝
pause
ren patch.ex_ patch.exe
if not exist PATCH.EXE goto error
if not exist 702704.RTP goto error
patch 702704.rtp
patch readme.rtp
copy technote.rtp technote
cd technote
..\patch technote.rtp
del technote.rtp
cd ..
echo Patch complete! Now deleting patch files...
del patch.exe
del 702704.rtp
del technote.rtp
del readme.rtp
echo Patch successfully applied; patch files deleted.
goto end
:error
echo ╔═══════════════════════════════════════════════════════════════╗
echo ║ This patch should be applied by copying PATCH.EX_, README.RTP ║
echo ║ 702704.RTP, TECHNOTE.RTP and RUNME.BAT into your QEMM ║
echo ║ directory. Then rename PATCH.EX_ to PATCH.EXE and type: ║
echo ║ ║
echo ║ RUNME ║
echo ║ ║
echo ╚═══════════════════════════════════════════════════════════════╝
:end